<audio> Tag is use to use to Insert Audio File in a Webpage.
control attribute is use to audio controls should be Displayed.
autoplay attribute is use to play the audio automatically when the webpage is loaded.
muted attribute is use to define audio output should be muted.
loop attribute is use to play again if the audio is end.
src attribute is use to define the sourse of the audio file.
<audio controls id="audio" autoplay loop>
<source src="Faded.mp3" type="audio">
</audio>